    /* 1. CORE SETUP */
    .fb-fdb-scope {
        background: #0a0a0a;
        color: #fff;
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-fdb-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
        margin-top: 50px;
    }

    /* 2. TITLES */
    .fb-fdb-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .fb-fdb-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 5px;
        background: #ffcc00;
    }

    .fb-fdb-header-center {
        text-align: center;
        margin-bottom: 50px;
    }

    .fb-fdb-header-center .fb-fdb-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fb-fdb-title span {
        color: #ffcc00;
    }

    /* 3. HERO SECTION */
    .fb-fdb-hero {
        padding: clamp(80px, 15vh, 180px) 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.3) 100%),
            url('') center/cover;
    }

    .fb-fdb-badge {
        color: #ffcc00;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .fb-fdb-h1 {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .fb-fdb-p {
        max-width: 600px;
        color: #ccc;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .fb-fdb-btn-wrap {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* 4. BUTTONS */
    .fb-fdb-btn-y {
        background: #ffcc00;
        color: #000;
        padding: 16px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-fdb-btn-w {
        border: 2px solid #fff;
        color: #fff;
        padding: 14px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-fdb-btn-y:hover {
        background: #fff;
        transform: translateY(-3px);
    }

    /* 5. PORT TAGS */
    .fb-fdb-section {
        padding: clamp(50px, 10vh, 100px) 0;
    }

    .fb-fdb-bg-dark {
        background: #050505;
    }

    .fb-fdb-split {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .fb-fdb-resp-img {
        width: 100%;
        border-radius: 8px;
        border: 1px solid #333;
    }

    .fb-fdb-port-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 25px;
    }

    .fb-fdb-port-tag {
        padding: 8px 18px;
        background: #111;
        border: 1px solid #ffcc00;
        color: #ffcc00;
        font-weight: 800;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    /* 6. CARDS (Armor Frame) */
    .fb-fdb-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .fb-fdb-card {
        background: #111;
        border: 1px solid #222;
        border-radius: 8px;
        transition: 0.4s;
        overflow: hidden;
    }

    .fb-fdb-card-top {
        background: #1a1a1a;
        padding: 10px 20px;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1px;
        color: #666;
    }

    .fb-fdb-active {
        border-color: #ffcc00;
        box-shadow: 0 10px 30px rgba(255, 204, 0, 0.05);
    }

    .fb-fdb-active .fb-fdb-card-top {
        background: #ffcc00;
        color: #000;
    }

    .fb-fdb-card-body {
        padding: 30px;
    }

    .fb-fdb-card h3 {
        margin-bottom: 12px;
        font-size: 1.3rem;
    }

    .fb-fdb-card p {
        color: #888;
        font-size: 0.9rem;
    }

    .fb-fdb-card:hover {
        transform: translateY(-8px);
        border-color: #ffcc00;
    }

    /* 7. DUAL INFO BOXES */
    .fb-fdb-dual {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .fb-fdb-info-card {
        padding: clamp(30px, 5vw, 50px);
        background: #111;
        border: 1px solid #222;
        border-radius: 10px;
    }

    .fb-fdb-yellow {
        background: #ffcc00;
        color: #000;
        border: none;
    }

    .fb-fdb-ul {
        list-style: none;
        padding: 0;
        margin-top: 25px;
    }

    .fb-fdb-ul li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 30px;
        font-weight: 700;
    }

    .fb-fdb-yellow .fb-fdb-ul li {
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .fb-fdb-ul li::before {
        content: '◰';
        position: absolute;
        left: 0;
        color: #ffcc00;
        font-size: 18px;
    }

    .fb-fdb-yellow .fb-fdb-ul li::before {
        color: #000;
    }

    /* 8. RESPONSIVE DESIGN */
    @media (max-width: 992px) {
        .fb-fdb-split {
            grid-template-columns: 1fr;
        }

        .fb-fdb-img-box {
            order: -1;
        }
    }

    @media (max-width: 600px) {
        .fb-fdb-hero {
            text-align: center;
        }

        .fb-fdb-badge {
            justify-content: center;
        }

        .fb-fdb-btn-wrap {
            flex-direction: column;
            align-items: center;
        }

        .fb-fdb-btn-y,
        .fb-fdb-btn-w {
            width: 100%;
            text-align: center;
            max-width: 320px;
        }

        .fb-fdb-h1 {
            font-size: 2.2rem;
        }

        .fb-fdb-title {
            text-align: center;
        }

        .fb-fdb-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }